body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: #fbfcfc;
}
/* font */
/* font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif; */
:root {
    --color-judul: #303030;
    --color-title: #3a3a3a;
    --color-text: #4f4f4f;
    --color-brown3: rgb(73, 107, 162);
    --color-brown2: #4884c8;
    --color-brown1: rgb(155, 217, 255);
    --shadow: rgba(52, 52, 52, 0.08);
}
.fa-eye {
    color: rgb(73, 107, 162);
}
h1 {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 700;
}
h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
h4,
h5,
h6 {
    color: var(--color-title);
}
p,
small {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}
small {
    color: var(--color-title);
}
#header p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}
#header a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
}
a {
    font-family: "Roboto", sans-serif;
}
/* template */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-judul);
}
.border-radius10 {
    border-radius: 10px;
}
.bt-2 {
    background-color: #fbfcfc;
    border-radius: 10px;
    animation: bottomTop 1s forwards;
    padding: 20px 30px;
}
@keyframes bottomTop {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-80px);
    }
}
.peringkat1 {
    color: #ffd649;
}
.peringkat2 {
    color: #cbcccc;
}
.peringkat3 {
    color: #c07a68;
}

.bg-brown3 {
    background-color: var(--color-brown3);
}
.bg-brown2 {
    background-color: var(--color-brown2);
}
.txt-brown3 {
    color: var(--color-brown3);
}
.txt-brown {
    color: var(--color-brown2);
}
.txt-brown2 {
    color: var(--color-brown2);
}
.txt-text {
    color: var(--color-text);
}
.txt-title {
    color: var(--color-title);
}
/* emd template */

/* wa button */
a.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: rgb(32, 196, 110);
    color: white;
    padding: 10px;
    height: 50px;
    width: 50px;
    border-radius: 40px;
    z-index: 20;
    justify-content: center;
    align-items: center !important;
    display: flex;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0px 8px 10px 5px rgba(52, 52, 52, 0.1);
}
/* end wa button */

/* header */
#header .description {
    opacity: 0;
}
#header img {
    opacity: 0;
}

.leftToRight {
    animation: leftToRight 1s forwards;
}
@keyframes leftToRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
.rightToLeft {
    animation: rightToLeft 1s forwards;
}
@keyframes rightToLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
.bottomToTop {
    animation: bottomToTop 1s forwards;
}
@keyframes bottomToTop {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.background-container {
    background-color: white;
    box-shadow: 0px 8px 30px rgba(38, 38, 38, 0.055);
}
.btn-main {
    background-color: var(--color-brown2);
    padding: 10px;
    width: 100px;
    border-radius: 10px;
    color: rgb(255, 255, 255) !important;
}

.btn-brown {
    background-color: var(--color-brown2);
    padding: 10px;
    width: 200px;
    border-radius: 10px;
    color: rgb(255, 255, 255) !important;
}
.navbar a.nav-link {
    color: rgb(240, 240, 240) !important;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler i {
    color: var(--color-brown1);
    font-size: 28px;
}
img.videoProfile {
    z-index: 10;
    width: 290px;
    border-radius: 20px;
    height: 184px;
    opacity: 0;
    position: relative;
    animation: showComponent 1s forwards;
}
.backgroundVideo {
    width: 330px;
    height: 204px;
    position: absolute;
    left: 20px;
    bottom: -10px;
    z-index: 2;
    opacity: 0;
    animation: showComponent 1s 0.4s forwards;
}

.video .play {
    position: relative;
}
.video .play::before {
    content: "";
    background-image: url("../icon/play-video.svg");
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 20;
    display: block;
    cursor: pointer;
    opacity: 0;
    animation: showComponent 1s forwards;
}
.navbar-nav {
    background-color: var(--color-brown2);
    padding: 10px;
}
img.videoProfile:hover {
    cursor: pointer;
}
p {
    color: var(--color-text);
    font-size: 18px;
}
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0px 8px 30px var(--main);
}
.navbar {
    z-index: 10;
    position: absolute;
    width: 100%;
    top: 0px;
    background-attachment: fixed !important;
    left: 0px;
}
.navbarFixed {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    background-attachment: fixed !important;
    width: 100%;
    left: 0;
    top: 0;
    animation: showComponent 0.4s;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
}
@keyframes showComponent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* end header */

/* company */
.company .row {
    margin-top: 2rem;
    min-height: 100px;
    width: 50rem;
    max-width: 100%;
    position: relative;
    display: flex !important;
    align-content: center !important;
}
.company {
    justify-content: center !important;
    display: flex;
}
.company .row img {
    position: relative;
    width: 70px !important;
    max-height: 50px !important;
}
/* end company */

/* why us */
#whyUs {
    margin-top: 4rem;
    position: relative;
}
#whyUs .backgroundSection {
    position: absolute;
    z-index: -1;
    height: 500px;
    left: 0;
    display: block;
    bottom: 0px;
}
#whyUs .animation1 {
    opacity: 0;
}
#whyUs .content ul li p,
#whyUs .content p {
    color: var(--color-text);
}
#whyUs .ssd img {
    width: 100%;
    opacity: 0;
}
#whyUs .row {
    flex-direction: column-reverse;
}
#whyUs ul li {
    list-style: none;
    opacity: 0;
}

#whyUs ul li img {
    height: 80px;
    margin-bottom: 10px;
    width: 80px;
    align-self: center;
}
/* end why us */

/* total students */
#totalStudents {
    min-height: 50vh;
    height: 100%;
    padding: 15px 0px;
    display: grid;
    align-self: center;
    position: relative;
    margin-top: 8rem;
}
#totalStudents h4,
#totalStudents h6,
#totalStudents h2 {
    color: rgb(250, 250, 250);
}
#totalStudents h1 {
    font-weight: bold;
    font-size: 42px;
}
#totalStudents .t1 {
    color: #70e752;
}
#totalStudents .t2 {
    color: #e9a701;
}
#totalStudents .t3 {
    color: #e1d401;
}
#totalStudents .t4 {
    color: #c542b9;
}
#totalStudents .t5 {
    color: #c5716a;
}
#totalStudents::after {
    content: "";
    background-size: cover;
    background-image: url(../image/background-banner-total.png);
    width: 100%;
    height: 100%;
    background-position: center;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
}
#totalStudents::before {
    content: "";
    background-color: #3367b5;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 0;
    left: 0;
}
#totalStudents .container {
    display: grid;
    align-content: center;
}
/* end total students */

/* about us */
#aboutUs {
    margin-top: 8rem;
}
#aboutUs h2,
#majors h2 {
    opacity: 0;
}
#aboutUs .card {
    box-shadow: 0px 8px 30px var(--shadow);
    border: none;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    padding-top: 0px;
    height: 100%;
    opacity: 0;
    width: 100%;
}
#aboutUs .card:hover {
    box-shadow: none;
    transition-duration: 0.3s;
}
#aboutUs .content a,
#majors .content a {
    text-decoration: none;
}
#aboutUs .backgroundSection {
    position: absolute;
    z-index: -1;
    height: 400px;
    right: 0px;
}
#aboutUs .content .col-6 {
    margin-top: 4rem;
}
#aboutUs .card img {
    height: 60px;
    width: 60px;
    left: 50%;
    margin-top: -30px;
    margin-bottom: 10px;
    position: relative;
    transform: translateX(-50%);
}

#majors .card h4,
#aboutUs .card h4 {
    font-size: 1.2rem;
}

/* end about us */

/* majors */
.checklist {
    animation: checklist 20s alternate;
}
@keyframes checklist {
    to {
        stroke-dashoffset: 0;
    }
    from {
        stroke-dashoffset: 1000;
        stroke-dasharray: 1000;
    }
}
#majors {
    margin-top: 8rem;
}
#majors .backgroundSection {
    position: absolute;
    z-index: -1;
    height: 500px;
    left: 0px;
}
#majors .card {
    box-shadow: 0px 8px 30px var(--shadow);
    border: none;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    padding-top: 0px;
    opacity: 0;
    min-height: 18vh;
    height: 100%;
    width: 100%;
    position: relative;
}
.line1 {
    margin-top: 0px;
}
#majors .card:hover {
    box-shadow: none;
    transition-duration: 0.3s;
}
#majors .content .col-6 {
    margin-top: 4rem;
}
#majors .card img {
    height: 60px;
    width: 60px;
    left: 50%;
    margin-top: -30px;
    margin-bottom: 10px;
    position: relative;
    transform: translateX(-50%);
}

/* end majors */

/* news */
#news {
    min-height: 60vh;
    margin-top: 10rem;
    background-color: #edf4ff;
}
#news .content h5 {
    margin-top: 10px;
}
#news .content a {
    text-decoration: none;
}
#news .content p {
    color: var(--color-text);
}
#news .content .eye::after,
#allNews .content .eye::after {
    content: "\f06e";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: rgb(250, 250, 250);
    position: absolute;
    font-size: 48px;
    z-index: 2;
    left: 50%;
    opacity: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
#news .card:hover .eye::after,
#allNews .card:hover .eye::after {
    animation: show 0.4s ease-out forwards;
}
#news .card:hover .eye::before,
#allNews .card:hover .eye::before {
    animation: animationShow 0.4s ease-out forwards;
}
#news .content .eye,
#allNews .content .eye {
    position: relative;
}
#news .content .eye::before,
#allNews .content .eye::before {
    content: "";
    width: 100%;
    z-index: 1;
    border-radius: 10px;
    height: 100%;
    position: absolute;
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes animationShow {
    0% {
        background-color: none;
    }
    100% {
        background-color: rgba(0, 0, 0, 0.1);
    }
}
#news .card {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgb(222, 222, 222);
}
#news .card img {
    margin-bottom: 20px;
    height: auto;
    max-height: 280px;
    border-radius: 10px;
    margin: 0;
    background-color: transparent;
}
#news .owl-nav,
#alumni .owl-nav {
    display: none;
}
.owl-dot.active span {
    background: var(--color-brown2) !important;
}
.owl-dot {
    outline: none !important;
}
.owl-dot span {
    background: rgba(162, 80, 73, 0.2) !important;
}
#news .owl-nav .owl-next,
#alumni .owl-nav .owl-next {
    background: none;
    color: #4964a2;
    width: 50px;
    height: 50px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-right: -60px;
    outline: none;
    border-radius: 50px;
}
#news .owl-nav .owl-prev,
#alumni .owl-nav .owl-prev {
    background: none;
    color: #4964a2;
    width: 50px;
    height: 50px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-left: -60px;
    outline: none;
    border-radius: 50px;
}
#news .owl-nav .owl-next::after,
#alumni .owl-nav .owl-next::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    margin-top: -29px;
    margin-left: -8px;
}
#news .owl-nav .owl-prev::after,
#alumni .owl-nav .owl-prev::after {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    margin-top: -29px;
    margin-left: -12px;
}
#news .owl-nav span,
#alumni .owl-nav span {
    display: none;
}
#news .owl-nav .owl-next::before,
#alumni .owl-nav .owl-next::before {
    content: "";
    background-color: rgba(73, 106, 162, 0.2);
    height: 50px;
    width: 50px;
    position: absolute;
    display: block;
    z-index: -1;
    margin-left: 0px;
    margin-top: -25px;
    border-radius: 50px;
}
#news .owl-nav .owl-prev::before,
#alumni .owl-nav .owl-prev::before {
    content: "";
    background-color: rgba(73, 106, 162, 0.2);
    height: 50px;
    width: 50px;
    position: absolute;
    display: block;
    z-index: -1;
    margin-left: 0px;
    margin-top: -25px;
    border-radius: 50px;
}
/* end news */

/* leaderboard */
#leaderboard {
    margin-top: 8rem;
}
#leaderboard .backgroundSection {
    position: absolute;
    z-index: -1;
    height: 250px;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
#leaderboard .content img.leaderboard-icon {
    width: 32px;
    height: 46px;
}
#leaderboard .content img {
    align-self: center;
}
#leaderboard .desc h4,
#leaderboard .desc h5 {
    margin-bottom: 0px;
}
#leaderboard .custom-select {
    border: none;
    box-shadow: 0px 8px 30px var(--shadow);
    border-radius: 6px;
}
#leaderboard .content img.avatar {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin-left: 10px;
}
#leaderboard small {
    font-size: 14px;
    line-height: 16px;
}
.desc {
    align-items: center !important;
    display: grid;
    padding-left: 20px;
}
#leaderboard .content {
    overflow-x: scroll;
    width: 100%;
}
#leaderboard .item {
    padding: 10px;
    min-width: 20rem;
    min-height: 16vh;
    border-radius: 10px;
    margin: 20px 0px;
    background-color: white;
}
.column {
    width: 30rem;
    margin: 0px 10px;
}
/* end leaderboard */

/* alumni */
#alumni {
    margin: 8rem 0;
    position: relative;
}
#alumni p {
    color: var(--color-text);
}
#alumni .backgroundSection {
    position: absolute;
    z-index: -1;
    left: 20px;
    height: 140px;
}
#alumni .item img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 20px 0px;
    border: 2px solid var(--color-brown3);
}
#alumni .item {
    text-align: center;
    justify-items: center;
    display: grid;
}
/* end alumni */

/* footer */
footer {
    left: 0px;
    position: absolute;
    width: 100%;
}
footer a {
    font-weight: 500;
    color: var(--color-text);
}
footer a:hover {
    color: var(--color-brown3);
    text-decoration: none;
}

footer h6 {
    font-weight: 600;
}
footer .container li {
    list-style: none;
    color: var(--color-text);
}
footer .row h6 {
    margin-top: 20px;
}
footer .row img {
    margin-top: 20px;
    width: 50px;
}
footer ul {
    padding-left: 0px;
}
footer p {
    font-size: 16px;
    margin: 0px;
}
/* end footer */

/* page news details */
#banner {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(200deg, #aee7ff, #97ceff);
    position: relative;
}
#banner h2 {
    text-align: center;
    position: absolute;
    top: 45%;
    color: var(--color-title);
    transform: translateY(-55%);
}
#newsDetails .content img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-height: 500px;
}
.latestNews h4 {
    margin-top: 4rem;
}
#newsDetails .content p {
    color: var(--color-text);
}
#newsDetails .latestNews img {
    width: 100%;
    height: auto;
    max-height: 160px;
    border-radius: 8px;
}
#newsDetails .content .information p {
    font-size: 16px;
    color: var(--color-title);
}
/* end news details */

/* page all news */
#allNews .card {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgb(222, 222, 222);
}
#allNews .card img {
    margin-bottom: 20px;
    border-radius: 10px;
    height: auto;
    max-height: 300px;
    width: 100%;
    margin: 0;
    position: relative;
}
#allNews .card h5 {
    margin-top: 10px;
}
#allNews .card p {
    color: var(--color-text);
}
#allNews .content a {
    text-decoration: none;
}
#allNews .pagination .page-link {
    border-radius: 6px !important;
    margin: 4px;
    color: var(--color-brown3);
}
#allNews .row.pt-3 {
    padding-top: 0px !important;
}
#allNews .pagination .page-item.active .page-link {
    background-color: rgb(152, 203, 255);
    border-color: rgb(152, 203, 255);
}
#allNews .pagination .page-item:hover .page-link {
    background-color: rgb(152, 203, 255);
    border-color: rgb(152, 203, 255);
}

/* end all news */

/* page majors details */
.jobs .item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    display: flex;
    align-items: center;
}
.jobs .item h6 {
    margin-left: 10px;
    margin-bottom: 0px;
}
/* end majors details */

/* profile sekolah */
#profileSekolah .item,
#ekstrakulikuler .item {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    display: flex;
    align-items: center;
}
#ekstrakulikuler svg,
#profileSekolah svg {
    height: 26px;
    width: 26px;
}
#profileSekolah .item h6,
#ekstrakulikuler .item h6 {
    margin-left: 10px;
    margin-bottom: 0px;
    font-size: 1rem;
}
#profileSekolah .headmaster img {
    float: left;
    width: 200px;
    margin-right: 20px;
}

/* end about us */
@media (max-width: 370px) {
    img.videoProfile {
        width: 214px;
        max-width: 100%;
        height: 124px;
        margin-top: 0px;
    }
    #leaderboard .backgroundSection {
        height: 180px;
        max-width: 100%;
    }
    .backgroundVideo {
        width: 234px;
        max-width: 100%;
        height: 154px;
        left: 30px;
        top: 48px;
    }
    .video .play::before {
        content: "";
        width: 40px;
        height: 40px;
    }
}
@media (min-width: 490px) {
    .line1 {
        margin-top: 12px;
    }
    .company .row img {
        width: 100px !important;
    }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    #leaderboard .backgroundSection {
        height: 300px;
    }
    #whyUs ul li {
        display: flex;
    }
    #whyUs ul li img {
        margin-bottom: 0px;
    }
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--color-brown2);
}
.active a.nav-link {
    color: var(--color-brown2) !important;
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    @keyframes animationHeader {
        from {
            opacity: 1;
            margin-right: -150px;
        }
        to {
            opacity: 1;
            margin-right: 0px;
        }
    }
    #leaderboard .backgroundSection {
        height: 500px;
    }
    #alumni .backgroundSection {
        height: 180px;
    }

    #aboutUs .backgroundSection {
        height: 500px;
    }
    #aboutUs .card img {
        height: 80px;
        width: 80px;
        margin-top: -40px;
    }

    #majors .card h4,
    #aboutUs .card h4 {
        font-size: 1.5rem;
    }

    #majors .card img {
        height: 80px;
        width: 80px;
        margin-top: -40px;
    }
    #news .owl-nav,
    #alumni .owl-nav {
        justify-content: space-between;
        display: flex;
        font-size: 40px;
        position: absolute;
        z-index: -1;
        top: 40%;
        transform: translateY(-80%);
        width: 100%;
    }
    img.videoProfile {
        width: 334px;
        height: 224px;
        margin-top: 0px;
    }
    .backgroundVideo {
        width: 374px;
        height: 254px;
        left: -8px;
        top: 56px;
    }

    #whyUs .ssd img {
        display: block;
        width: 80%;
    }
    .latestNews h4 {
        margin-top: 0px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #whyUs .row {
        flex-direction: row;
    }
    #whyUs .backgroundSection {
        top: 0px;
    }
    .video .play::before {
        content: "";
        width: 70px;
        height: 70px;
    }
    #whyUs .ssd img {
        display: block;
        width: 100%;
    }
    #header p {
        color: var(--color-title);
    }
    .txt-brown {
        color: var(--color-brown2);
    }
    #header .container h1 {
        color: var(--color-judul);
    }
    #header a.btn-brown {
        background-color: var(--color-brown2);
    }
    .navbar a.nav-link {
        font-weight: 400;
        letter-spacing: 0.6px;
        color: var(--color-judul) !important;
    }
    .navbar a.nav-link.btn-main {
        margin-top: -3px;
        color: white !important;
    }
    .navbar .dropdown-menu a:hover {
        color: var(--color-brown3);
    }
    .navbar a.nav-link:hover {
        color: var(--color-brown3) !important;
    }
    .navbar-nav {
        background-color: transparent;
        padding: 0px;
    }

    img.videoProfile {
        width: 444px;
        height: 284px;
    }
    .backgroundVideo {
        width: 484px;
        height: 324px;
        left: 90px;
        top: -20px;
    }

    #leaderboard .content {
        overflow-x: hidden;
        width: 100%;
        justify-content: space-between;
    }
    #leaderboard .item {
        min-width: 100%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

@media (min-width: 992px) and (max-width: 1199px) {
    .backgroundVideo {
        width: 484px;
        height: 324px;
        left: 0px;
        top: -20px;
        position: absolute;
    }
}
